home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1997 September / Designer's Club 1997 September.iso / pc / IDEASRC / Main.DIR / 00011_Script_11 < prev    next >
Text File  |  1997-08-01  |  1KB  |  63 lines

  1. on mousedown
  2.   repeat while the mousedown
  3.     set the memberNum of sprite 10 to 4
  4.     updatestage
  5.   end repeat
  6.   --set the memberNum of sprite 10 to 3
  7.   --updatestage
  8.   
  9.   if sprite 10 intersects 2 then 
  10.     puppetsound (2) "godisway"
  11.     go movie "vrattle"
  12.     exit
  13.   end if
  14.   
  15.   if sprite 10 intersects 3 then 
  16.     puppetsound (2) "godisway"
  17.     go movie "whale"
  18.   end if
  19.   
  20.   if sprite 10 intersects 4 then
  21.     puppetsound (2) "godisway"
  22.     go movie "tree"
  23.   end if
  24.   
  25.   if sprite 10 intersects 5 then 
  26.     puppetsound (2) "godisway"
  27.     go movie "bugs"
  28.   end if
  29.   
  30.   if sprite 10 intersects 6 then 
  31.     puppetsound (2) "godisway"
  32.     go movie "gallery"
  33.   end if
  34.   
  35.   if sprite 10 intersects 7 then
  36.     puppetsound (2) "godisway"
  37.     go frame "interface"
  38.     exit
  39.   end if
  40.   
  41.   if sprite 10 intersects 8 then 
  42.     puppetsound (2) "godisway"
  43.     go frame "credits"
  44.     exit
  45.   end if
  46.   
  47.   if sprite 10 intersects 9 then 
  48.     if soundbusy(2) then
  49.       sound stop 2
  50.     else puppetsound (2) "help"  
  51.   end if
  52.   
  53.   
  54.   if sprite 10 intersects 11 then 
  55.     sound stop 1
  56.     sound stop 2
  57.     sound stop 3
  58.     go movie "quit"
  59.   end if
  60.   
  61.   
  62.   
  63. end